home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
273_01
/
getattr.cc
< prev
next >
Wrap
Text File
|
1987-11-02
|
244b
|
12 lines
int get_attr(int row, int col)
/* Get the attribute at the specified row and col.
RETURNED is attr
*/
{
extern color, mono, cga, ega, scrseg, bios;
int attr;
unsigned int scrofs;
sread_a(row,col,&attr);
return(attr);
}